From: Christian Marangi Date: Fri, 3 Oct 2025 21:35:08 +0000 (+0200) Subject: CMakeLists: update cmake minimum required version to 3.10 X-Git-Url: http://git.openwrt.org/%22http:/oss.oetiker.ch/rrdtool//%22/%22http:/oss.oetiker.ch/rrdtool/%22?a=commitdiff_plain;h=cfb93f105ca2b5e81c5e489076f38d5786f346ea;p=project%2Frpcd.git CMakeLists: update cmake minimum required version to 3.10 New cmake version 4.0 requires at least 3.5 version as the minimum required version with it increased to 3.10 in to-be-released cmake versions. Set the minimum required version to 3.10 to future-proof for future cmake version. Suggested-by: Hannu Nyman Signed-off-by: Christian Marangi --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 480d10b..56255ca 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,4 @@ -cmake_minimum_required(VERSION 2.6) +cmake_minimum_required(VERSION 3.10) INCLUDE(CheckFunctionExists)